Skip to content

NET_SDK_GetConfigFile

Interface Definition

1
2
3
BOOL NET_SDK_GetConfigFile(
    LONG lUserID,
    char* sFileName);
1
2
3
public static extern bool NET_SDK_GetConfigFile(
    int lUserID,
    string sFileName);

Function Description

Export the configuration file.

Parameter Description

Parameters Type Remark
lUserIDin LONG User ID, the return value of NET_SDK_Login or NET_SDK_LoginEx.
sFileNamein char* Store the file path (binary file) that saves the configuration file. Note: Please use absolute paths, do not use relative paths.

Return Value

  • Type:BOOL

  • Remark:Returns TRUE if successful, FALSE if failed.

Remarks

After the interface is called, there will be a reconnect operation, which requires waiting for about 5 seconds before the subsequent interface can be completed.

Error Code